summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2022-12-06 00:14:31 +0100
committerLioncash <mathew1800@gmail.com>2022-12-06 00:15:23 +0100
commit7bf4b453497ac445a94b295b1e4041e790e8f298 (patch)
tree32df973c17157d2a8b2b65dbf9b241e734bae75d
parentemulated_console: std::move() ParamPackages and callbacks where applicable (diff)
downloadyuzu-7bf4b453497ac445a94b295b1e4041e790e8f298.tar
yuzu-7bf4b453497ac445a94b295b1e4041e790e8f298.tar.gz
yuzu-7bf4b453497ac445a94b295b1e4041e790e8f298.tar.bz2
yuzu-7bf4b453497ac445a94b295b1e4041e790e8f298.tar.lz
yuzu-7bf4b453497ac445a94b295b1e4041e790e8f298.tar.xz
yuzu-7bf4b453497ac445a94b295b1e4041e790e8f298.tar.zst
yuzu-7bf4b453497ac445a94b295b1e4041e790e8f298.zip
-rw-r--r--src/core/hid/emulated_console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hid/emulated_console.cpp b/src/core/hid/emulated_console.cpp
index a896a5ad8..30c2e9d17 100644
--- a/src/core/hid/emulated_console.cpp
+++ b/src/core/hid/emulated_console.cpp
@@ -199,7 +199,7 @@ void EmulatedConsole::SetTouch(const Common::Input::CallbackStatus& callback, st
if (is_new_input) {
touch_value.pressed.value = true;
- touch_value.id = static_cast<u32>(index);
+ touch_value.id = static_cast<int>(index);
}
touch_value.x = touch_input.x;